Foxit PDF Conversion SDK
extracted_comment.h
1
2235
/*
2236
Basic memory operations
2237
*/
2238
2239
/*
2240
Following base memory functions use default Foxit manager for current module
2241
*/
2242
2243
/*
2244
Macro definitions for File accessing modes
2245
*/
2246
2247
/*
2248
Byte string concatenation operation
2249
*/
2250
2251
/*
2252
Both side of the concatenation operator (+) can be:
2253
<ul>
2254
<li>
2255
A buffered byte string (const CFX_ByteString&);
2256
</li>
2257
<li>
2258
A non-buffered byte string (const CFX_ByteStringC&, a.k.a FX_BSTR);
2259
</li>
2260
<li>
2261
A zero-terminated C-style string (FX_LPCSTR);
2262
</li>
2263
<li>
2264
A single character or byte (FX_CHAR);
2265
</li>
2266
</ul>
2267
2268
*/
2269
2270
/*
2271
Wide string concatenation operation
2272
*/
2273
2274
/*
2275
Both side of the concatenation operator (+) can be:
2276
<ul>
2277
<li>
2278
A buffered wide string (const CFX_WideString&);
2279
</li>
2280
<li>
2281
A non-buffered wide string (const CFX_WideStringC&);
2282
</li>
2283
<li>
2284
A zero-terminated C-style wide string (FX_LPCWSTR);
2285
</li>
2286
<li>
2287
A single character (FX_WCHAR);
2288
</li>
2289
</ul>
2290
But you must have at least one CFX_WideString or CFX_WideStringC on one side.
2291
2292
*/
2293
2294
/*
2295
Wide string compare operation
2296
*/
2297
2298
/*
2299
Basic Unicode character attribute routines
2300
*/
2301
2302
/*
2303
text direction defines
2304
*/
2305
2306
/*
2307
Encode wide string into UTF-8 byte string
2308
*/
2309
2310
/*
2311
OS Defines
2312
*/
2313
2314
/*
2315
Compiler Defines
2316
*/
2317
2318
/*
2319
CPU Defines
2320
*/
2321
2322
/*
2323
Word Size Defines
2324
*/
2325
2326
/*
2327
Byte Order Defines
2328
*/
2329
2330
/*
2331
Target Defines
2332
*/
2333
2334
/*
2335
BASIC DATA TYPES
2336
*/
2337
2338
/*
2339
Byte string operations
2340
*/
2341
2342
/*
2343
File operations
2344
*/
2345
2346
/*
2347
Wide string operations
2348
*/
2349
2350
/*
2351
Memory block operations
2352
*/
2353
2354
/*
2355
Memory utilities
2356
*/
2357
2358
/*
2359
Math functions
2360
*/
2361
2362
@2026 Foxit Software Incorporated. All rights reserved.